ODataV401List<T>

Represents an OData v4.01 collection response containing a list of entities with optional pagination metadata. Uses simplified OData v4.01 notation for context and metadata properties.

Syntax

public class ODataV401List<T> : ODataV401ResponseBase

Inheritance

Properties

Items

[JsonPropertyName("value")]
public List<T> Items { get; set; }
Gets or sets the collection of entities returned by the OData v4.01 service. This property contains the actual data payload of the response.

Returns

List<T>

ODataCount

[JsonPropertyName("@count")]
public long ODataCount { get; set; }
Gets or sets the total number of entities in the collection using OData v4.01 simplified count notation. This property is only populated when the $count query option is used.

Returns

long
[JsonPropertyName("@nextLink")]
public string ODataNextLink { get; set; }
Gets or sets the URL for retrieving the next page of results using OData v4.01 simplified notation. This property is null if there are no more pages available.

Returns

string